home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Precision Software Appli…tions Silver Collection 1
/
Precision Software Applications Silver Collection Volume One (PSM) (1993).iso
/
tutor
/
cptuts22.arj
/
FLYAWAY.H
< prev
next >
Wrap
C/C++ Source or Header
|
1992-01-20
|
373b
|
14 lines
// This file contains a few general purpose definitions to be used
// with several of the FLYAWAY adventure game classes.
#ifndef FLYAWAY_H
#define FLYAWAY_H
#define FALSE 0
#define TRUE 1
enum word {north = 1, east, south, west, drop, get,
look, inventory, read, buy, help, quit,
keys, candy, ticket, money, monitor, paper};
#endif